home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- rem --- L-System Parser/Mutator --- Lj Lapre -------------------------------
- rem
- rem Exec 'distant ls-file' (without .ls extension!) to get multiple children
- rem from a mother form. Each child is 10 generations removed from the mother.
- rem
- rem Try 'distant lsys00'
- rem
- rem Mother
- rem ┌─────┬─────┬┴────┬─────┬─────┬──────┐
- rem │ │ │ │ │ │ │
- rem │ │ │ │ │ │ │
- rem │ │ │ │ │ │
- rem Child Child Child Child Child Child Etc.
- rem
- rem The form on the screen will be stored in the file mutation.ls.
- rem
- rem The -s500 option is to limit the size off the l-string to 500K.
- rem The -p50000 option is to limit the size off the form to 50000 polygons.
- rem
-
- rem The mother
-
- lparser %1
- lviewer -f output
-
- rem The children
-
- :begin
-
- lparser -s500 -p50000 -u5 %1
- lviewer -f output
-
- goto begin
-